Component org.nuxeo.ecm.platform.mail.service.MailServiceContrib
In bundle org.nuxeo.ecm.platform.mail
Requirements
Resolution Order
419
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.platform.mail.service.MailServiceContrib--propertiesFetcher
- org.nuxeo.ecm.platform.mail.service.MailServiceContrib--actionPipes
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.mail.service.MailServiceContrib">
<require>org.nuxeo.ecm.platform.MailService</require>
<extension target="org.nuxeo.ecm.platform.MailService"
point="propertiesFetcher">
<propertiesFetcher name="simple" class="org.nuxeo.ecm.platform.mail.fetcher.SimplePropertiesFetcher"/>
</extension>
<extension target="org.nuxeo.ecm.platform.MailService" point="actionPipes">
<pipe name="nxmail">
<action>
org.nuxeo.ecm.platform.mail.listener.action.StartAction
</action>
<action>
org.nuxeo.ecm.platform.mail.listener.action.ExtractMessageInformationAction
</action>
<action>
org.nuxeo.ecm.platform.mail.listener.action.CheckMailUnicity
</action>
<action>
org.nuxeo.ecm.platform.mail.listener.action.CreateDocumentsAction
</action>
</pipe>
</extension>
</component>